Keysight Pathwave 89600 VSA .NET API
SendData(ArraySegment<Single>) Method
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > UserInputDataChannel Class > SendData Method : SendData(ArraySegment<Single>) Method


dataSamples
Time series data block to be consumed by attached Measurement. If UserInputSetup.IsComplexData is true, complex data is expected, and presented in this parameter as alternating real and imaginary values.

Glossary Item Box

Send data to be processed.

Syntax

Visual Basic (Declaration) 
Public Overloads Overridable Sub SendData( _
   ByVal dataSamples As ArraySegment(Of Single) _
) 
C# 
public virtual void SendData( 
   ArraySegment<float> dataSamples
)
C++/CLI 
public:
virtual void SendData( 
   ArraySegment<float> dataSamples
) 

Parameters

dataSamples
Time series data block to be consumed by attached Measurement. If UserInputSetup.IsComplexData is true, complex data is expected, and presented in this parameter as alternating real and imaginary values.

Remarks

Send data for this channel into first-in-first-out (FIFO) buffer to be consumed by attached Measurement. Data can be sent for a multiple channels using SendData(IEnumerable<Single[]>) or UserInputData.SendData. just the copying the data from the offset of the arraySegment and copied size is the count of the arraySegment

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also